home *** CD-ROM | disk | FTP | other *** search
/ MacHack 2001 / MacHack 2001.toast / pc / The Hacks / Mac OS X Patching Docs / HiApp / main.c
Encoding:
Text File  |  2001-06-23  |  130 b   |  11 lines

  1.  
  2. void helloWorld();
  3. void goodbyeWorld();
  4.  
  5. int main (int argc, const char * argv[])
  6. {
  7.     helloWorld();
  8.     goodbyeWorld();
  9.     return 0;
  10. }
  11.